home *** CD-ROM | disk | FTP | other *** search
- TITLE "Capture Wildcat File Statistics"
- ;
- ; NOTE: The "S" command form the FILE menu must be implemented on the BBS
- ; For this script to work!
- ;
-
- ; Make sure we are at the file menu.
- VENUE FILE
-
- ; Open capture file, inform user what's going on and send stats command.
- CAPTURE "T___STAT.TXT" OVERWRITE
- MESSAGE "Capturing file transfer statistics"
- SEND "S|"
-
- ; Find our way back to the file menu.
- VENUE FILE
-
- ; Close the capture file.
- CLOSE
-
- ; Place the captured text in the BBS directory "Statistics" screen.
- STATISTICS "T___STAT.TXT"
-
- ; Erase the used capture file.
- ERASE "T___STAT.TXT"
-
- ; Exiting with a ZERO argument tells Robocomm the script was a success.
- EXIT 0
-
-